home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Univers Mac Interactif 53
/
Univers Mac Interactif - Issue 53.iso
/
UNIVERS MAC 53
/
Hypercard
/
Sans-Faute⁄Grammaire®
/
Sans-Faute⁄Grammaire ƒ
/
Pour les autres applications
/
FileMaker Pro
/
Exemple Script
< prev
next >
Wrap
Text File
|
1995-09-08
|
482b
|
14 lines
tell application "FileMaker Pro"
set RecIndex to 1
repeat while Exists (Record RecIndex)
-- vérification du champ "Commentaire"
copy cellValue of Cell "Commentaire" of (Record RecIndex) as styled text to theText
tell Application "Sans-Faute/Grammaire 2.05"
copy (Checking theText) to TheText2
end tell
copy TheText2 as styled text to cellValue of Cell "Commentaire" of (Record RecIndex)
-- fin de la vérification
set RecIndex to RecIndex + 1
end repeat
end tell